5dac30496fa97a7a2e3c16c85c579e2eb52a58c3,iis-common/src/test/java/eu/dnetlib/iis/common/SshOozieClient.java,SshOozieClient,getJobProperties,#String#,76
Before Change
*/
public Properties getJobProperties(String jobId) {
SshSimpleConnection sshConnection = sshConnectionManager.getConnection();
Command execResults = sshConnection.execute(buildOozieJobCommand(jobId, "configcontent"));
String jobPropertiesString = SshExecUtils.readCommandOutput(execResults);
return oozieCmdLineParser.parseJobProperties(jobPropertiesString);
After Change
* Returns properties of job with provided id
*/
public Properties getJobProperties(String jobId) {
String jobPropertiesString = executeOozieJobCommand("configcontent", jobId);
return oozieCmdLineParser.parseJobProperties(jobPropertiesString);
}